	V6 changelog:
	
	(Turn on your wordwrap)
	
	- Reproofed from scratch.  Many many minor typos squashed.
	
	- General improvements to formatting, including the addition of typopgraphical quotes and em-dashes, all using named HTML entities.
	
	- Cleanup of the underlying HTML code and reorganization of the structure, including the addition of ALT tags to all graphics.

	- Added all the maps.
	
	There is now a main directory holding the .css file containing formatting information for all the books, an index.html file with links to each individual book, and this readme, with one subdirectory for each book (or story), plus a separate subdirectory holding all the graphics (chapter icons and maps).  These graphics are distributed separately, at least in the original release, to reduce redundancy.  The Graphics subdirectory also contains an optional font - COBLTC__.TTF - which makes the dropcaps (oversized capital letters) at the beginning of each chapter look much nicer.
	
	Each book now links back to the main index of books and to the next book in the series.
	
	- The USER.CSS file
	
	A significant new addition is the provision for simple user-defined formatting, using an external file called user.css.  Some format questions (font, margins, paragraph spacing, text justification) are matters of personal taste, so an effort has been made to make it simple for each reader to have the display of the books reflect his or her wishes without having to modify the underlying HTML code (or even know anything about HTML or CSS markup).  You will, however, need a reader or browser that is standards-compliant (pretty much anything written this millenium).
	
	To modify the appearance of the books, create a file named user.css in a text editor (don't use a word processor, or use "save as text" if you do) and follow the subsequent instructions:
	
	- Margins:
	
	By default, the books display with left and right margins of 5% of the available screen size.  To eliminate the margins, your user.css file should contain a line as follows:
	
	body {
	margin-left: 0%; 
	margin-right: 0%;
	}
	
	
	The percentage values can also be increased or decreased to suit personal taste.  (For a more "book-like" display, similar to that in MS Reader, try setting both margin values to about 25% and enlarging your reader or browser to full-screen display).
	
	
	- Font
	
	To change the default display font, your user.css should include a line as follows:
	
	body {
	font-family: font;
	}
	
	where font is the name of your desired font.  For example:
	
	body {
	font-family: Courier;
	}
	
	would set the font to Courier.  NB: If the name of the font contains spaces, you *must* include quotation marks around the name of the font, as in:
	
	body {
	font-family: "Times New Roman";
	}
	
	Similarly, to change font size, use:
	
	body {
	font-size: ##pt;
	}
	
	where ## is the desired size in points, so that:
	
	body {
	font-size: 18pt;
	}
	
	would set the size to 18 point type.
	
	To change both the font and the font-size, combine the two instructions, as in:
	
	body {
	font-size: 18pt;
	font-family: "Times New Roman";
	}
	
	which would set the display to 18 point Times New Roman.
	
	Something similar applies if setting two or more of font size, font, and margin size:
	
	body {
	font-size: 18pt;
	font-family: "Times New Roman";
	margin-left: 0%;
	margin-right: 0%;
	}
	
	will set the display font to Times New Roman in 18 point type and eliminate the left and right margins.
	
	
	- Text alignment
	
	By default, these books use "ragged" (non-justified) text display.  If you prefer "justified" display (where all lines end evenly at the right margin), put:
	
	p {
	text-align: justify;
	}
	
	into your user.css.
	
	
	- Paragraph spacing
	
	Most browsers and readers include some blank space (roughly one line) between each paragraph.  If you prefer to eliminate these empty lines, insert
	
	p {
	margin-top: 0em; 
	margin-bottom: 0em; 
	}

	
	into your user.css file.  (Or increase the numbers if you prefer more whitespace between paragraphs).
	
	If also using fully-justified text, the user.css entry should look like this:
		
	p {
	margin-top: 0em; 
	margin-bottom: 0em; 
	text-align: justify;
	}


	Once you have chosen your changes, save the file user.css either in the main directory (where this readme, the index.html file, and the master.css file are) or in the directory above it.  NB: If you have files named user.css in both locations, the last found will be used (in other words if you have one in the same directory as this readme and another in the directory above, the latter will be used).
	
	If you already have one of the books open, you will have to reload it in your browser or reader before seeing any changes.  If you decide you don't like the result, either edit the user.css file again (reloading to check the changes) or just delete it - the books will then revert to their default formatting after a reload.
	
	Note to editors/proofers/scanners: if you want to add user.css functionality to your own HTML ebooks, you need only add the lines:
	
	<style type="text/css">
	@import url(user.css);
	@import url(../user.css);
	@import url(.../user.css);
	</style>
	
	after any existing internal stylesheets or links to external stylesheets.  This will look for user.css first in the same directory as the book, then one directory above, then two directories above.